home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Frameworks / TransSkel 3.24 / Source / Dialog Item Stuff / SkelSetDlogRect.c < prev    next >
Text File  |  1996-01-17  |  261b  |  18 lines

  1. /*
  2.  * Set bounding rectangle of a dialog item.
  3.  */
  4.  
  5. # include    "TransSkel.h"
  6.  
  7.  
  8. pascal void
  9. SkelSetDlogRect (DialogPtr d, short item, Rect *r)
  10. {
  11. short    type;
  12. Handle    h;
  13. Rect    rOld;
  14.  
  15.     GetDialogItem (d, item, &type, &h, &rOld);
  16.     SetDialogItem (d, item, type, h, r);
  17. }
  18.